colorscale: don't use focus-line-width
authorCosimo Cecchi <cosimoc@gnome.org>
Sun, 4 May 2014 18:41:41 +0000 (20:41 +0200)
committerCosimo Cecchi <cosimoc@gnome.org>
Fri, 9 May 2014 18:02:46 +0000 (11:02 -0700)
gtk/gtkcolorscale.c

index 23ac4fa4c4373e3315a81cafda517c189fe4f7e1..0f06aa2dad21e676ab404cbfba4379ac3968867d 100644 (file)
@@ -56,21 +56,20 @@ gtk_color_scale_get_trough_size (GtkColorScale *scale,
                                  gint *height_out)
 {
   GtkWidget *widget = GTK_WIDGET (scale);
-  gint width, height, focus_line_width;
+  gint width, height;
   gint x_offset, y_offset;
   gint slider_width, slider_height;
 
   gtk_widget_style_get (widget,
-                        "focus-line-width", &focus_line_width,
                         "slider-width", &slider_width,
                         "slider-length", &slider_height,
                         NULL);
 
-  width = gtk_widget_get_allocated_width (widget) - 2 * (focus_line_width);
-  height = gtk_widget_get_allocated_height (widget) - 2 * (focus_line_width);
+  width = gtk_widget_get_allocated_width (widget);
+  height = gtk_widget_get_allocated_height (widget);
 
-  x_offset = focus_line_width;
-  y_offset = focus_line_width;
+  x_offset = 0;
+  y_offset = 0;
 
   /* if the slider has a vertical shape, draw the trough asymmetric */
   if (slider_width > slider_height)